home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / packet / monax25 / sparse.h < prev    next >
Text File  |  1987-10-19  |  429b  |  33 lines

  1. /* sparse.h - parse defines for stats.exe */
  2. #define numcom 7
  3. struct {
  4.     char c[8];
  5.     } comtext [0] 
  6.     = {
  7.      "fnull   "
  8.     ,"BAUD    "
  9.     ,"END     "
  10.     ,"HELP    "
  11.     ,"PORT    "
  12.     ,"QUIT    "
  13.     ,"TIMESTAM"
  14.     ,"BASE    "
  15.     ,"\0"
  16.  
  17.     };
  18.  
  19. enum  com_type {
  20.     c_fnull,    /* must be first */
  21.     c_baud,
  22.     c_end,
  23.     c_help,
  24.     c_port,
  25.     c_quit,
  26.     c_time,
  27.     c_base,
  28.     c_lnull,
  29.     }; 
  30. /* must be in the same order as comtext above */
  31.  
  32.  
  33.